home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / system / cpcug.zip / SWEEP.DOC < prev    next >
Text File  |  1987-04-20  |  2KB  |  60 lines

  1.           SWEEP                                  Charles Petzold
  2.           Command
  3.           Copyright (c) 1986, Ziff-Davis Publishing Co.
  4.           ______________________________________________________
  5.  
  6.           Purpose:  Causes a command to be successively executed
  7.                     in every subdirectory on a hard disk.
  8.  
  9.           Format:   SWEEP Command [parameter(s)]
  10.  
  11.           Remarks:  SWEEP starts from the current directory.  In
  12.                     order to use SWEEP to extend the range of a
  13.                     command to all the subdirectories on a disk,
  14.                     use CD (if necessary) to make the root
  15.                     directory your current directory.  From the
  16.                     root directory, the command
  17.  
  18.                          SWEEP DIR
  19.  
  20.                     will display the listings, by subdirectory,
  21.                     of every non-hidden file on the disk.  To
  22.                     erase all the .BAK files on a disk you need
  23.                     only get into the root directory and issue
  24.                     the command
  25.  
  26.                          SWEEP DEL *.BAK
  27.  
  28.                     SWEEP itself will not accept parameters other
  29.                     than its command.  Thus, if you are on drive
  30.                     C: and wish a directory of all files on drive
  31.                     D: to be sent to your printer, you must first
  32.                     make drive D: the current drive before you
  33.                     issue the command
  34.  
  35.                          SWEEP DIR > LPT1
  36.  
  37.                     (In this case you would either need a copy of
  38.                     SWEEP.COM on drive D: or else drive D: would
  39.                     have to be listed on your PATH.)
  40.  
  41.                     SWEEP can execute .BAT file commands (and
  42.                     even non-DOS commands, such as LOCATE.COM).
  43.                     A useful file called CLEAN.BAT might consist
  44.                     of the three lines
  45.  
  46.                     DEL *.BAK
  47.                     DEL *.TMP
  48.                     DEL *.OBJ
  49.  
  50.                     From the root directory, if you then enter
  51.  
  52.                          SWEEP CLEAN
  53.  
  54.                     all .BAK, .TMP, and .OBJ files will be erased
  55.                     from the disk.
  56.  
  57.                     Notes:
  58.  
  59.                     1.   Requires DOS 2.0 or later.
  60.